home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / KEYWORD / LOCAL.KEY < prev    next >
Text File  |  1993-11-07  |  249b  |  6 lines

  1. * local                                               internal
  2. local(a,b) declares the variables a and b are local varirables in block().
  3. local() must be the last arguement within block().
  4. See also: block
  5. e.g. f(x_) := block(p:=x^2,p,local(p))
  6.